home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / advbas32.arc / ADVBAS.NEW < prev    next >
Encoding:
Text File  |  1987-03-16  |  10.1 KB  |  203 lines

  1. ADVBAS 3.2, 03/16/87:
  2.  
  3.      You can check for the existence of a subdirectory with SUBEXIST
  4.      (drive spec allowed).  COPYFILE will let you copy a file faster than
  5.      the system COPY command, and without having to do a SHELL.  A drive
  6.      status function, DISKSTAT, has been provided.  This allows you to
  7.      find out such information as the number of bytes in a cluster, the
  8.      amount of free space left on a drive, total space available on a
  9.      drive, etc. Routines to convert the time or date from numbers to a
  10.      string and vice versa have been added (DATEN2S, DATES2N, TIMEN2S, and
  11.      TIMES2N).  For AT machines only, GETEXTM will return the amount of
  12.      extended memory in kilobytes.  BLOCKMOVE will let you move a block of
  13.      memory from one location to another.  DATASEG will retrieve the value
  14.      of the current data segment.
  15.  
  16.  
  17. ADVBAS 3.1, 03/07/87:
  18.  
  19.      Time/date compression has been added.  DATE2INT and INT2DATE allow
  20.      you to convert a date to a single integer and back.  TIME2INT and
  21.      INT2TIME do the same with the time.  Given a month number, MONTH will
  22.      return the name of the month.  SPEAKER will enable you to toggle
  23.      sound effects on and off, without changing the timing of the affected
  24.      routines.  TINSTR lets you search a string for a character of a given
  25.      type, rather than a specific character.  You can search for any
  26.      combination of Alphabetic, Numeric, Symbolic, Control, Graphics, or
  27.      Blank characters, or their opposites.  The DTR function lets you
  28.      turn the communications signal DTR on or off.
  29.  
  30.  
  31. ADVBAS 3.0, 02/04/87: (Second Anniversary Edition)
  32.  
  33.      Many of the existing ADVBAS routines have been further optimized.
  34.      MMCHECK will now return the number of mouse buttons available as well
  35.      as a mouse status check.  GETKBD and SETKBD allow you to get/set the
  36.      states of the keyboard toggles: insert, caps lock, num lock, and
  37.      scroll lock.  GETCRT tells you whether the display is color or
  38.      monochrome.  CLRKBD clears any pending characters from the keyboard
  39.      buffer.  DELAY18TH and DELAY allow you to delay for a given time
  40.      interval, independent of machine type.  CALCATTR calculates the
  41.      color/attribute for routines such as XQPRINT.  Unlike the BASIC
  42.      formula it replaces, it allows use of the "blink" attribute.  SHIFTL
  43.      and SHIFTR let you perform binary shifts on integers.  It is now
  44.      possible to have low-res graphics on any monitor, using the SETPOINT,
  45.      RESETPOINT and TESTPOINT routines.  These give you 80 column by 50
  46.      row graphics in text mode.  Finally, MAKEWINDOW has been converted
  47.      from BASIC to a normal ADVBAS routine (in assembly language) for
  48.      extra speed and convenience.
  49.  
  50.  
  51. ADVBAS 2.9, 01/12/87:
  52.  
  53.      Mouse control has been added.  You can see if a mouse exists, get or
  54.      set the location of the mouse cursor, check the status of the mouse
  55.      buttons in two different ways, and set a legal range for the mouse
  56.      cursor, using the MM series of functions (MMBUTTON, MMCHECK, MMCLICK,
  57.      MMGETLOC, MMSETLOC, MMSETRANGE).  Expanded memory checking has been
  58.      added-- you can see if it exists, and if so, how much memory there is
  59.      and how much of it is free (GETLIMM).  Finally, a BASIC subprogram to
  60.      generate pop-up windows (MAKEWINDOW) has been included.  This is
  61.      based on Dave Evers' fine BASWIND routine, with assorted improvements.
  62.      The screen routines QPRINT, XQPRINT, SCRSAVE, SCRREST, GETSCREEN and
  63.      PUTSCREEN have been modified to automatically use high-speed mode
  64.      with monochrome adapters.  Their speed with color adapters has also
  65.      been increased.  Object code for all routines has been included,
  66.      along with information on automating library production.  This will
  67.      allow y'all to produce custom libraries using either the standard LIB
  68.      format or the QuickBASIC 2.0 BUILDLIB format.  This has been added
  69.      for your convenience-- please do not abuse it!  You may create custom
  70.      libraries for your own personal use.  You may -not- distribute them!
  71.  
  72.  
  73. ADVBAS 2.8, 12/28/86:
  74.  
  75.      Assorted file control functions have been added.  MLOAD is a BLOAD
  76.      command for compilers which don't include it.  EXIST lets you test
  77.      for the existence of a given file.  A set of new file I/O functions
  78.      allow low-level control of file access.  Among other advantages,
  79.      these functions allow file handling in subprograms (since error codes
  80.      are returned at the time of error, rather than triggering an error
  81.      trap) and support file-level networking/multitasking control (whereas
  82.      BASIC only supports record-level control).  These functions include
  83.      FCREATE and FOPEN to open files, FREAD and FWRITE to access them,
  84.      FSETEND and FSETREC to move the file pointer, and FCLOSE to close the
  85.      file.
  86.  
  87.  
  88. ADVBAS 2.7, 10/18/86:
  89.  
  90.      A new version of the library has been added which is fully compatible
  91.      with the QuickBASIC v2.0 programming environment.  Much of ADVBAS has
  92.      been overhauled to make it faster and more compact.  New functions:
  93.      EQUIPMENT will give you information about the hardware you're running
  94.      on (memory and number of various kinds of ports).  PRINTSCREEN
  95.      duplicates the function of pressing Shift-PrtSc on the keyboard.
  96.      GETSCREEN and PUTSCREEN are new, comprehensive screen save/restore
  97.      functions.  GETSCREEN allows you to save any part of the screen to an
  98.      array, using any screen page, with either flicker-free or fast access
  99.      methods.  PUTSCREEN is the corresponding restore-screen function.  It
  100.      allows you to put a saved area onto any part of the screen, any
  101.      screen page, with either flicker-free or fast access.  DOSINKEY lets
  102.      you get keypresses from the DOS standard input device.  Combined with
  103.      DMPRINT, this allows you to use such DOS features as I/O redirection
  104.      and CTTY with compiled BASIC programs.
  105.  
  106.  
  107. ADVBAS 2.6, 9/19/86:
  108.  
  109.      XQPRINTD will allow you to print to the screen using direct screen
  110.      writes.  This is the fastest possible print method, but will produce
  111.      snow on some color displays if you are printing to the active display
  112.      page.  SCRRESTP and SCRSAVEP will allow you to save and restore any
  113.      screen page to/from an array.  SCRRESTPD and SCRSAVEPD will do the
  114.      same using direct screen reads/writes (see note at XQPRINTD).
  115.      SETCOMM will allow you to reset the parameters on an open communi-
  116.      cations "file" without having to close the file (and thus drop the
  117.      DTR signal) first.  In addition, it lets you set the baud rate to
  118.      speeds beyond the normal limitation of 9600 bps.
  119.  
  120.  
  121. ADVBAS 2.5, 8/04/86:
  122.  
  123.      DMPRINT now allows screen display directly through MS-DOS output.
  124.      This differs from MPRINT, which uses some BIOS routines.  It is a
  125.      less sophisticated (and hence faster) routine than MPRINT.  XQPRINT
  126.      and RECOLOR screen flicker (on color monitors) has been wiped out,
  127.      thanks to Steven Gibson.  This and the other direct-access screen
  128.      routines have been modified so as to cause less interference with
  129.      interrupts.  The manual, ADVBAS.DOC, has been reformatted so it will
  130.      print correctly on most printers.
  131.  
  132.  
  133. ADVBAS 2.4, 7/21/86:
  134.  
  135.      Functions have been added to convert numbers from one base to another
  136.      (DEC2ANY, ANY2DEC), and incidentally to allow use of unsigned
  137.      integers in your programs, with some twiddling.  Space compression
  138.      has been added via BSQ, BUSQLEN and BUSQ, which allow you to compress
  139.      text information.  Space savings range from a reliable 16% for normal
  140.      text, to up around 50% for files with many blanks (such as structured
  141.      C, Pascal, or assembly files).
  142.  
  143.  
  144. ADVBAS 2.3, 6/28/86:
  145.  
  146.      You can now set a file's time/date stamp using SETFTD.  A host of
  147.      functions which allow you access to disk directories has been added,
  148.      giving the ability to search for a file using wildcards, or to
  149.      duplicate the DOS directory command: FINDFIRSTF, FINDNEXTF, GETNAMEF,
  150.      GETATTRF, GETDATEF, GETTIMEF, GETSIZEF.  The manual has been revised
  151.      to list functions in alphabetical order, allowing the elimination of
  152.      the index.  This file, ADVBAS.NEW, is now listed in reverse
  153.      chronological order, so the newest things come first instead of at
  154.      the end.
  155.  
  156.  
  157. ADVBAS 2.2, 6/20/86:
  158.  
  159.      Character insert/delete support for windows was added via MINSCHR and
  160.      MDELCHR.  This can also be used to simulate left and right scrolling
  161.      of a window.  The day of the week can now be gotten using WEEKDAY.
  162.      The most interesting new function is SOUNDEX, which returns the
  163.      soundex code of a word.  Soundex codes allow you to identify similar
  164.      sounding words, so that you could do a phone directory search that
  165.      matches on the sound of a name rather than the precise spelling, for
  166.      instance.
  167.  
  168.  
  169. ADVBAS 2.1, 6/14/86:
  170.  
  171.      Window handling was added.  The MPRINT and MPRINTC routines can now
  172.      be set to conform to screen windows, via the MWINDOW function.
  173.  
  174.  
  175. ADVBAS 2.0, 3/28/86:
  176.  
  177.      Four functions were added.  KEYPRESS tells you if a key is waiting in
  178.      the keyboard input buffer.  RECOLOR quickly resets all characters on
  179.      the screen with a given color/attribute to a new color/attribute
  180.      (text mode only).  SETMATI sets the first "x" elements of an integer
  181.      array to a given value.  ADDMATI adds or subtracts a given value from
  182.      the first "x" elements of an integer array.  The documentation now
  183.      includes notes on how PC-compatible a machine needs to be before any
  184.      given routine will work on it.
  185.  
  186.  
  187. ADVBAS 1.9, 12/12/85:
  188.  
  189.      XLATE will now work with a string as well as single characters.
  190.      MPRINT will work with a string, replacing the old MPRINTC which could
  191.      only print out a single character at a time.  The functions
  192.      STRIPRANGE, REVERSE, LROTATE, RROTATE, EXTRACT, READBITF and
  193.      WRITEBITF have been added.  The documentation now includes a
  194.      reference listing of the ADVBAS functions.
  195.  
  196.  
  197. ADVBAS 1.8:  Not released to the public.
  198.  
  199.  
  200. ADVBAS 1.7, 11/28/85:
  201.  
  202.      The functions DELCHR and INSCHR have been added.
  203.